projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
750ff6a
)
* gnus-cache.el (()): Make sure byte-compilation doesn't trip on
author
Lars Magne Ingebrigtsen
<larsi@gnus.org>
Sun, 14 Jul 1996 14:42:27 +0000
(14:42 +0000)
committer
Lars Magne Ingebrigtsen
<larsi@gnus.org>
Sun, 14 Jul 1996 14:42:27 +0000
(14:42 +0000)
the undefined `gnus-add-shutdown'.
lisp/gnus-cache.el
patch
|
blob
|
history
diff --git
a/lisp/gnus-cache.el
b/lisp/gnus-cache.el
index 24b38c6466798d887fefa1ddcd6e074a4ce17495..cb770a8c619d046222b9fab7fcb0dcba0b5e285f 100644
(file)
--- a/
lisp/gnus-cache.el
+++ b/
lisp/gnus-cache.el
@@
-71,7
+71,10
@@
variable to \"^nnml\".")
(not (eq gnus-use-cache 'passive))))
(gnus-cache-read-active)))
-(gnus-add-shutdown 'gnus-cache-close 'gnus)
+(condition-case ()
+ (gnus-add-shutdown 'gnus-cache-close 'gnus)
+ ;; Complexities of byte-compiling makes this kludge necessary. Eeek.
+ (error nil))
(defun gnus-cache-close ()
"Shut down the cache."